2e7c833675ca05e186a713de140434994b22e581,sdk/src/main/java/com/silanis/esl/sdk/examples/BasicPackageCreationExample.java,BasicPackageCreationExample,execute,#,47

Before Change


                                                        .atPosition(400, 400)
                                                        .withSize(20, 20)
                                                        .withValue(true))
                                                .withField(FieldBuilder.radioButton(group2)
                                                        .onPage(0)
                                                        .atPosition(400, 500)
                                                        .withSize(20, 20)
                                                        .withValue(true))

After Change


                                                        .atPosition(400, 400)
                                                        .withSize(20, 20)
                                                        .withValue(true))
                                                .withField(FieldBuilder.radioButton(group2)
                                                        .withName("thirdField")
                                                        .onPage(0)
                                                        .atPosition(400, 500)
                                                        .withSize(20, 20)
                                                        .withValue(true))